home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1996 July / Macworld (1996-07).dmg / System 7.5 Update 2.0 / FileMaker Pro 3.0 CD Extras / FileMaker And Apple Events / Syntax Examples / Events / Get Data Examples < prev    next >
Encoding:
Text File  |  1996-01-25  |  548 b   |  23 lines  |  [TEXT/ToyS]

  1. tell application "FileMaker Pro"
  2.     get data first cell
  3.     get data last cell
  4.     cells 1 thru 5
  5.     get data every cell
  6.     record 2 as text
  7.     get data middle record
  8.     records 1 thru 4
  9.     every record
  10.     first cell of database 2
  11.     get data last cell of database 2
  12.     cells 1 thru 5 of database 2
  13.     every cell of database "Test1"
  14.     record 2 of database "Test1"
  15.     middle record of last database as list
  16.     records 1 thru 4 of last database as text
  17.     every record of last database
  18.     every record of last database as text
  19.     
  20.     every request
  21.     requests 1 thru 2
  22.     request ID 1
  23. end tell